home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia1.dir / 00378_Script_378 < prev    next >
Text File  |  1995-05-21  |  685b  |  35 lines

  1. on mouseDown
  2.   global whichShot, shotTemp
  3.   if whichShot > 2 then 
  4.     exit
  5.   else
  6.     put the movieTime of sprite 48 into shotTemp
  7.     puppetsound "camclick.aif"
  8.     
  9.     put "SnapBtn" into f
  10.     put "SnapBtnHL" into fHL
  11.     hiliter 7, f, fHL
  12.   end if
  13. end
  14.  
  15. on mouseUp
  16.   global gTheDay, snap1, snap2, whichShot, shotTemp
  17.   if whichShot > 2 then 
  18.     exit
  19.   else
  20.     
  21.     if whichShot = 1 then
  22.       put shotTemp into snap1
  23.       set whichShot = 2
  24.       go frame "Po1"
  25.     else
  26.       put shotTemp into snap2
  27.       set whichShot = 3
  28.       go frame "Po2"
  29.     end if
  30.   end if
  31.   startTimer
  32.     repeat while the timer < 10
  33.     end repeat
  34.   puppetsound 0
  35. end